func time.norm
6 uses
time (current package)
time.go#L1484: func norm(hi, lo, base int) (nhi, nlo int) {
time.go#L1523: year, m = norm(year, m, 12)
time.go#L1527: sec, nsec = norm(sec, nsec, 1e9)
time.go#L1528: min, sec = norm(min, sec, 60)
time.go#L1529: hour, min = norm(hour, min, 60)
time.go#L1530: day, hour = norm(day, hour, 24)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |